@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

/*pure button*/
/*!
Pure v1.0.1
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/pure-css/pure/blob/master/LICENSE.md
*/
.pure-button .pure-button2 {
  /* Structure */
  display: inline-block;
  zoom: 1;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Firefox: Get rid of the inner focus border */
.pure-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Inherit .pure-g styles */
.pure-button-group {
  letter-spacing: -0.31em;
  /* Webkit: collapse white-space between units */
  *letter-spacing: normal;
  /* reset IE < 8 */
  *word-spacing: -0.43em;
  /* IE < 8: collapse white-space between units */
  text-rendering: optimizespeed;
  /* Webkit: fixes text-rendering: optimizeLegibility */
}

.opera-only :-o-prefocus,
.pure-button-group {
  word-spacing: -0.43em;
}

.pure-button-group .pure-button .pure-button2 {
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
}

/*csslint outline-none:false*/
.pure-button {
  font-family: inherit;
  font-size: 100%;
  padding: 0.1em 1em;
  color: #ffffff;
  /* rgba not supported (IE 8) */
  color: white;
  /* rgba supported */
  border: 1px solid #999;
  /*IE 6/7/8*/
  border: none rgba(0, 0, 0, 0);
  /*IE9 + everything else*/
  background-color: #aaaaaa;
  text-decoration: none;
  border-radius: 3px;
  width: 70px;
  height: 32px;
}

.pure-button2 {
  font-family: inherit;
  font-size: 100%;
  padding: 0.1em 1em;
  color: #ffffff;
  /* rgba not supported (IE 8) */
  color: white;
  /* rgba supported */
  border: 1px solid #999;
  /*IE 6/7/8*/
  border: none rgba(0, 0, 0, 0);
  /*IE9 + everything else*/
  background: #9870FC;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  background: linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  text-decoration: none;
  border-radius: 3px;
  width: 70px;
  height: 32px;
}

.pure-button2:hover {
  background: #000 !important;
}

.pure-button-hover,
.pure-button:hover,
.pure-button:focus {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(40%, rgba(0, 0, 0, 0.05)),
    to(rgba(0, 0, 0, 0.1))
  );
  background-image: -webkit-linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.1)
  );
  background-image: -o-linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.1)
  );
  background-image: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.1)
  );
}

.pure-button:focus {
  outline: 0;
}

.pure-button-active,
.pure-button:active {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 0 6px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #000;
}

.pure-button[disabled],
.pure-button-disabled,
.pure-button-disabled:hover,
.pure-button-disabled:focus,
.pure-button-disabled:active {
  border: none;
  background-image: none;
  /* csslint ignore:start */
  filter: alpha(opacity=40);
  /* csslint ignore:end */
  opacity: 0.4;
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
}

.pure-button-hidden {
  display: none;
}

.pure-button-primary,
.pure-button-selected,
a.pure-button-primary,
a.pure-button-selected {
  background-color: #0078e7;
  color: #fff;
}

/* Button Groups */
.pure-button-group .pure-button .pure-button2 {
  margin: 0;
  border-radius: 0;
  border-right: 1px solid #111;
  /* fallback color for rgba() for IE7/8 */
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.pure-button-group .pure-button:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.pure-button-group .pure-button:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-right: none;
}

/*主要版面色彩*/
/* 主要色系深棕色*/
/*襯色橘色*/
/*body*/
body {
  font-family: Microsoft JhengHei;
  overflow-x: hidden;
  overflow-y: scroll;
}

.wrap {
  max-width: 1024px;
  margin: 0 auto;
}

/*網頁字型大小*/
h1 {
  font-size: 36px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

/*連結未點擊預設顏色*/
a {
  color: #ffffff;
}

/*清除浮動*/
.clearfix {
  clear: both;
}

/*rwd @media設定*/
.header {
  background-color: #000000;
  position: relative;
}
@media (max-width: 768px) {
  .header {
    padding-bottom: 30px;
  }
}

/*rwd @media設定*/
.logo {
  float: left;
  margin-top: 16px;
  margin-left: 10px;

}
@media (max-width: 568px) {
  .logo {
    margin-top: 25px;
  }
}

.logo a {
  display: block;
  width: 250px;
  text-indent: -99999px;
  height: 38px;
  background: url(../img/logo_w.png) no-repeat;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .logo a {
    width: 125px;
    height: 24px;
    background: url(../img/logo_l_120.png) no-repeat;
  }
}

.menu {
  float: right;
  padding-top: 10px;
  margin-right: 48px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .menu {
    margin-right: 10px;
  }
}
@media (max-width: 568px) {
  .menu {
    max-height: 0px;
    overflow: hidden;
    /*隱藏選單結束*/
    -webkit-transition: max-height 2.3s;
    -o-transition: max-height 2.3s;
    transition: max-height 2.3s;
    margin-top: 1px;
    /*絕對定位疊在網頁上*/
    position: absolute;
    z-index: 100;
    /*header 50px+1px boder 線條*/
    top: 49px;
    left: 0;
    right: 0;
    background: #000000;
    margin-right: 0px;
  }
}

.showmenu {
  display: none;
}
@media (max-width: 568px) {
  .showmenu {
    display: block;
    float: right;
    height: 24px;
    width: 24px;
    color: #ffffff;
    margin-top: -25px;
    margin-right: 22px;
    font-size: 24px;
  }
}

.menu li {
  float: left;
  color: #ffffff;
  margin-left: 48px;
  font-size: 18px;
}
@media (max-width: 568px) {
  .menu li {
    float: none;
    border-bottom: 1px dashed #ffffff;
    line-height: 2;
    margin-bottom: 10px;
    margin-left: 15px;
  }
}



.menu li a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu a:hover {
  color: #DC2F2F;
}

/*jQ點擊後動態在 body 加上 class */
@media (max-width: 568px) {
  .menu-show .menu {
    max-height: 500px;
  }
}

/*rwd @media設定*/
.btn {
  color: #ffffff;
  width: 100%;
  height: 410px;
  background-image: url(../img/header_desktop_1024.png);
  background-repeat: no-repeat;

  
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    height: 410px;
    background: url(../img/header_desktop_768.png);
    background-repeat: no-repeat;
   margin-top: -80px;
  }
}
@media (max-width: 568px) {
  .btn {
    width: 100%;
   
    background: url(../img/header_mobile.png);
    background-repeat: no-repeat;
    
  }
}

.box {
  width: 460px;
  height: 152px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  margin-left: 295px;
  margin-top: 67px;
  padding-top: 15px;
}
@media (max-width: 768px) {
  .box {
    
    width: 300px;
    height: 200px;
    margin: 80px auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 120px;
    margin-left: 25%;


  }
}

@media (max-width: 568px) {
  .box {
    margin-left: 15%;
    margin-top: 100px;
    padding-top: 10px;
   
    padding-bottom: 10px;
  }
}

.box .slogan {
  font-size: 30px;
  margin-top: 20px;
  text-align: center;
}


.box h1 {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .box h1 {
    position: relative;
    top: 30px;
  }
}
@media (max-width: 568px) {
  .box h1 {
    position: relative;
    top: 40px;
  }
}

.box p {
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .box p {
    position: relative;
    top: 30px;
  }
}
@media (max-width: 568px) {
  .box p {
    position: relative;
    top: 32px;
  }
}

.p2 {
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .p2 {
    position: relative;
    top: 37px;
  }
}
@media (max-width: 568px) {
  .p2 {
    position: relative;
    top: 38px;
  }
}

/*主要版面色彩*/
/* 主要色系深棕色*/
/*襯色橘色*/
/*rwd @media設定*/
.content {
  
  height: auto;
  position: relative;

  background-color: #f2f3f7;
}

@media(max-width:768px){
  .content{
    margin-top: -60px;
  }
}

.hh2 {
  text-align: center;
  padding-top: 50px;
}

.hh3 {
  text-align: center;
}

hr {
  width: 40%;
}

.content li {
  list-style-type: none;
  width: 31.33333%;
  margin-right: 1%;
  margin-left: 1%;
  float: left;
  margin-top: 31px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .content li {
    width: 48%;
  }
}
@media (max-width: 568px) {
  .content li {
    width: 98%;
  }
}

.content li h4 {
  margin-top: 20px;
}

.content li p {
  margin-top: 11px;
  line-height: 1.5;
}

/*主要版面色彩*/
/* 主要色系深棕色*/
/*襯色橘色*/
/*rwd @media設定*/
.impression {
  

  position: relative;
  z-index: 1;
  left: 0;
  top: 0;
}

@media(max-width:768px){
  .impression{
    height: ;
  }
}

.cheif_left {
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  background: linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  height: 460px;

  float: left;
 
}
@media (max-width: 768px) {
  .cheif_left {
   float: left;
    width: 100%;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
    background: linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  }
}

.cheif_right {
 
  height: 460px;
  margin-left: 512px;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  background: linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
}
@media (max-width: 768px) {
  .cheif_right {
    float: left;
    margin-left: 0px;
    height: 500px;
    width: 100%;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
    background: linear-gradient(45deg, #DC2F2F 0%, #9870FC 100%);
  }
}

.cheif {
  background-image: url(../img/main_chef_brown.png);

  width: 470px;
  height: 460px;
  margin-left: 42px;
  background-repeat: no-repeat;
  
}
@media (max-width: 768px) {
  .cheif {
   
 
    margin-left: 0px;
  }
}
@media (max-width: 568px) {
  .cheif {
    width: 99%;
    margin-left: 1%;
    margin-right: 1%;
  }
}

.bio {
  
  color: #ffffff;
  padding-top: 10px;  
  padding-bottom: 10px;
  padding-right: 8px;
  margin-left: 20px;
  max-width: 410px;
  line-height: 2;
  margin-bottom: 80px;
}

@media (max-width:895px) {
  .bio {
 
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .bio {
    margin-left: 10px;
    margin-top: 10px;
    line-height: 1.5;
  }
}
@media (max-width: 568px) {
  .bio {
    margin-bottom: 10px;
    line-height: 2;
    margin-left: 5%;
  }
}

@media (max-width: 768px) {
  .bio h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .subtitle4 {
    font-size: 15px;
  }
}

@media (max-width: 815px) {
  .article4 {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .article4 {
    font-size: 14px;
  }
}

@media (max-width: 856px){
  .article4 {
    font-size: 16px;
  }
}

/*主要版面色彩*/
/* 主要色系深棕色*/
/*襯色橘色*/
/*rwd @media設定*/
.feedback {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  background-color: #f2f3f7;
}
@media (max-width: 768px) {
  .feedback {
    font-size: 12px;
  }
}

.feedback h2 {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .feedback h2 {
    margin-left: 10px;
  }
}

.area1 {
  float: left;
  width: 31.3333%;
  display: inline-block;
  color: #383737;
  margin-bottom: 50px;
  margin-top: 32px;
  
  margin-left: 5px;

  line-height: 1.5; 
}

@media (max-width: 768px) {
  .area1 {
    width: 98%;
    margin-right: 1%;
    margin-left: 1%;
    font-size: 14px;
    line-height: 2;
  }
}

.story1 {
  float: left;
  width: 220px;
  margin-left: 30px;
}

@media (max-width: 768px) {
  .story1 {
    
    margin-left: 20%;
    width: 350px;
    float: left;
   
  
  }
}


@media (max-width:568px) {
  .story1 {
    margin-left: 9%;
    width: 350px;
    float: left;
  
  }
}


.name1 {
  margin-top: 19px;
}

.comment1 {
  margin-top: 22px;
}

.sign1 {
  margin-top: 16px;
  margin-left: 125px;
  float: right;
}

.area1 img {


  margin-left: 30px; 
  margin-top: 20px;
}


@media (max-width: 768px) {
  .area1 img {
  float: left;
  margin-left: 130px;
  }
}


@media (max-width: 568px){
  .area1 img{
    margin-left: 9%; 
    
  
  } 
}

.area2 {
  float: left;
  width: 31.3333%;
  color: #383737;
  margin-bottom: 50px;
  margin-top: 32px;
  margin-right: 1%;
  margin-left: 1%;
  line-height: 1.5; 
}
@media (max-width: 768px) {
  .area2 {
    width: 98%;
    margin-right: 1%;
    margin-left: 1%;
    font-size: 14px;
    line-height: 2;
  }
}



.story2 {
  float: right;
  margin-right: 30px;
  width: 220px;
}
@media (max-width: 768px) {
  .story2 {
    margin-left: 20%;
    width: 350px;
    float: left;
  }
}

@media (max-width: 568px) {
  .story2 {
    margin-left: 9%;
    width: 350px;
    float: left;
  }
}

.area2 img {
 
  margin-left: 20%; 
  margin-top: 20px;
  
}

@media (max-width: 768px) {
  .area2 img {
    margin-right: 200px;
  }
}
@media (max-width: 568px) {
  .area2 img {
    margin-left: 9%; 
  }
}

.name2 {
  margin-top: 19px;
}

.comment2 {
  margin-top: 22px;
}

.sign2 {
  margin-top: 16px;
  margin-left: 125px;
  float: right;
}

.area3 {
  float: left;
  width: 31.3333%;
  color: #383737;
  margin-bottom: 50px;
  margin-top: 32px;
  margin-right: 1%;
  margin-left: 1%;
  line-height: 1.5; 
}
@media (max-width: 768px) {
  .area3 {
    width: 98%;
    margin-right: 1%;
    margin-left: 1%;
    font-size: 14px;
    line-height: 2;
  }
}


.story3 {
  float: right;
  margin-left: 9%;
  width: 220px;
}

@media (max-width: 768px) {
  .story3 {
    
    margin-left: 20%;
    width: 350px;
    float: left;
   
  
  }
}

@media (max-width: 568px) {
  .story3 {
    margin-right: 80px;
    width: 350px;
    float: right;
  }
}



.area3 img {

  margin-left: 30%; 
  margin-top: 20px;
}

@media (max-width: 768px) {
  .area3 img {
    float: left;
    margin-left: 130px;
  }
}
@media (max-width: 568px) {
  .area3 img {
    margin-left: 42px;
  }
}

.name3 {
  margin-top: 19px;
}

.comment3 {
  margin-top: 22px;
}

.sign3 {
  margin-top: 16px;
  margin-left: 125px;
  float: right;
}

/*主要版面色彩*/
/* 主要色系深棕色*/
/*襯色橘色*/
/*rwd @media設定*/
.contact {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact {
    position: relative;
  }
}

.question {
  margin-left: 42px;
}

.contact_title {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact_title {
    text-align: left;
    padding-left: 40px;
  }
}
@media (max-width: 568px) {
  .contact_title {
    text-align: center;
    padding-left: 0px;
  }
}

.contact iframe {
  margin-top: 38px;
  float: left;
  width: 460px;
  height: 386px;
  
}
@media (max-width: 768px) {
  .contact iframe {
  
  }
}
@media (max-width: 568px) {
  .contact iframe {
    width: 85%;
  }
}

/*主要版面色彩*/
/* 主要色系深棕色*/
/*襯色橘色*/
/*rwd @media設定*/
.reservation {
  margin-top: 38px;
  float:right;
  margin-left: 20px;
  width: 45%;
}

@media(max-width:1002px){

  .reservation {
    width: 100%; 
    float: left;
    margin-left: 50px;
  }
}

@media (max-width: 768px) {
  .reservation {
  
    
    margin-bottom: 20px;
  }
}
@media (max-width: 568px) {
  .reservation {
    width: 90%;
  
  }
}

.iname {
  width: 99%;
  height: 32px;
}

@media (max-width: 1002px) {
  .iname {
    width: 80%;
  }
}

.itel,
.imail,
.inumber {
  margin-top: 30px;
  width: 99%;
  height: 32px;
}
@media (max-width: 568px) {
  .itel,
  .imail,
  .inumber {
    width: 90%;
  }
}

@media (max-width: 1002px) {
  .itel,
  .imail,
  .inumber {
    width: 80%;
  }
}

.tag-name {
  margin-left: -50px; 
  float: left; 
  margin-top: 10px;
}

.tag-phone{
  float: left; 
   margin-left: -50px; 
   margin-top: 80px;
 
}


.tag-mail{

  float: left;  
  margin-left: -50px;
   margin-top: 110px;
}

.tag-number{
  float: left;  
  margin-left: -50px;
  margin-top: 110px;
  
}
.qa {
  float: left;
  margin-top: 20px; 
 
  line-height: 1.5;
}
@media (max-width: 568px) {
  .qa {
  
    margin-left: ;
   
  }
}

.input {
  display: inline;
  color: #383737;
}
@media (max-width: 768px) {
  .input {
    position: absolute;
   
   
  }
}
@media (max-width: 568px) {
  .input {
    position: static;
    float: left;
  }
}

.tag4 {
  color: #383737;
}
@media (max-width: 768px) {
  .tag4 {
   
    float: left;
  }
}
@media (max-width: 568px) {
  .tag4 {
    
    margin-left: 1%;
  }
}

.qa_yes {
  float: left;
  margin-top: 6px;
}

.qa2 {
  float: left;
}

.qa_no {
  float: left;
  margin-top: 6px;
  margin-left: 36px;
}

.qa3 {
  float: left;
}

.enter {
  float: right;
  margin-top: -20px;

 
  bottom: 0;
}

@media (max-width: 1002px) {

  .enter{
    float: right;
    margin-right: 120px;
  }
}

@media (max-width:768px) {

  .enter{
    float: right;
    margin-right: 65px;
  }
}


@media (max-width: 568px) {
  .enter {
    width: 100%;
    float: right;
    margin-right:-225px; 
    margin-top:   
  }
}

/*主要版面色彩*/
/* 主要色系深棕色*/
/*襯色橘色*/
/*rwd @media設定*/

.footer {
  width: 100%;
  margin: 0 auto;
  background-color: #f2f3f7;
  margin-top: 50px;
  color: #383737;
}

.about {
  float: left;
  margin-bottom: 44px;
}

.about_title {
  margin-top: 50px;
  margin-left: 43px;
}

.about_article {
  margin-top: 16px;
  width: 299px;
  line-height: 1.5;
  margin-left: 43px;
}

.about_contact {
  float: left;
  margin-top: 50px;
  margin-left: 40px;
}

.about_contact ul {
  margin-top: 16px;
  line-height: 1.5;
  list-style-type: disc;
}

.footer_logo {
  float: right;
}

.footer_logo {
  margin-left: 125px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .footer_logo {
    float: left;
    margin-left: 40px;
  }
}

@media (max-width: 568px) {
  .footer_logo {
    margin-left: 30px;
    margin-top: 30px;
  }
}

.footer_logo a {
  display: block;
  text-indent: -999999px;
  width: 245px;
  height: 49px;
  background: url(../img/logo_l.png) no-repeat;
}

.social {
  margin-right: 18px;
}

@media (max-width: 768px) {
  .social {
    margin-left: 150px;
  }
}

.social-img {
  height: 31px;
  width: 31px;
}

.social-google,
.social-twitter,
.social-facebook {
  float: right;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .social-google,
  .social-twitter,
  .social-facebook {
  }
}

@media (max-width: 568px) {
  .social-google,
  .social-twitter,
  .social-facebook {
    margin-top: 40px;
    float: right;
  }
}

.foort_right {
  float: left;
}

@media (max-width: 768px) {
  .foort_right {
    display: block;
  }
}
